home *** CD-ROM | disk | FTP | other *** search
/ ASME's Mechanical Engine…ing Toolkit 1997 December / ASME's Mechanical Engineering Toolkit 1997 December.iso / c_lang / tccurses.lzh / WINMOVE.C < prev    next >
C/C++ Source or Header  |  1987-09-07  |  1KB  |  33 lines

  1. /****************************************************************/
  2. /* Mvwin() routine of the PCcurses package            */
  3. /*                                */
  4. /****************************************************************/
  5. /* This version of curses is based on ncurses, a curses version    */
  6. /* originally written by Pavel Curtis at Cornell University.    */
  7. /* I have made substantial changes to make it run on IBM PC's,    */
  8. /* and therefore consider myself free to make it public domain.    */
  9. /*        Bjorn Larsson (...mcvax!enea!infovax!bl)    */
  10. /****************************************************************/
  11. /* 1.0:    Release:                    870515    */
  12. /****************************************************************/
  13.  
  14. #include <curses.h>
  15. #include <curspriv.h>
  16.  
  17. /****************************************************************/
  18. /* Mvwin() moves window 'win' to position (begx, begy) on the    */
  19. /* screen.                            */
  20. /****************************************************************/
  21.  
  22. int    mvwin(win, begy, begx)
  23.   WINDOW    *win;
  24.   int         begy, begx;
  25.   {
  26.   if ((begy + win->_maxy) > (LINES-1) || (begx + win->_maxx) > (COLS-1))
  27.     return(ERR);
  28.   win->_begy = begy;
  29.   win->_begx = begx;
  30.   touchwin(win);
  31.   return(OK);
  32.   } /* mvwin */
  33.